home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_properties_common.php < prev    next >
PHP Script  |  2004-10-20  |  924b  |  42 lines

  1. <?php
  2. /* $Id: tbl_properties_common.php,v 2.3 2004/10/21 10:18:12 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Gets some core libraries
  8.  */
  9. require_once('./libraries/grab_globals.lib.php');
  10. require_once('./libraries/common.lib.php');
  11. require_once('./libraries/bookmark.lib.php');
  12.  
  13. // Check parameters
  14. PMA_checkParameters(array('db','table'));
  15.  
  16. /**
  17.  * Defines the urls to return to in case of error in a sql statement
  18.  */
  19. $err_url_0 = $cfg['DefaultTabDatabase'] . '?' . PMA_generate_common_url($db);
  20. $err_url   = $cfg['DefaultTabTable'] . '?' . PMA_generate_common_url($db, $table);
  21.  
  22.  
  23. /**
  24.  * Ensures the database and the table exist (else move to the "parent" script)
  25.  */
  26. require_once('./libraries/db_table_exists.lib.php');
  27.  
  28.  
  29. /**
  30.  * Displays headers
  31.  */
  32. $js_to_run = 'functions.js';
  33. require_once('./header.inc.php');
  34.  
  35.  
  36. /**
  37.  * Set parameters for links
  38.  */
  39. $url_query = PMA_generate_common_url($db, $table);
  40.  
  41. ?>
  42.